/* ===================================================================
   MANUFACTURING-PROCESS.CSS
=================================================================== */

/* ===== RESET / GLOBAL ===== */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Playfair Display',serif;
}

body{
background:#16100c;
}

/* ===== HEADER / NAVBAR ===== */
header{

position:fixed;
top:0;
left:0;
width:100%;

display:flex;
justify-content:space-between;
align-items:center;
padding:10px 60px;
height:87px;

background:#efe7da;
border-bottom:1px solid #171310;
z-index:999;
transition:.4s;
}

header.scrolled{
padding:12px 60px;
box-shadow:0 5px 20px rgba(0,0,0,.15);
}

#navbar,
#navbar *{
    font-family:'Poppins',sans-serif;
}

.logo img{
width:85px;
height:85px;
}

.logo{
    margin-left:40px;
    margin-top:10px;
}

#navbar > nav{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
}

.nav-list{
    display:flex;
    align-items:center;
    gap:42px;
    list-style:none;
    margin-top:5px;
}

#navbar > nav a{
text-decoration:none;
color:#4a4a4a;
font-size:17px;
font-weight:500;
transition:.3s;
white-space:nowrap;
}

#navbar > nav a:hover{
color:#f7901e;
}

#navbar > nav a.active{
    color:#f7901e !important;
}

/* ===== HEADER RIGHT (language pill + hamburger) ===== */
.header-right{
    display:flex;
    align-items:center;
    gap:16px;
}

.lang-pill{
    display:flex;
    align-items:center;
    gap:6px;

    background:#ffffff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:999px;
    padding:8px 16px 8px 12px;

    font-size:12px;
    font-weight:600;
    color:#333;
    letter-spacing:.5px;

    cursor:pointer;
    transition:.3s;
}

.lang-pill:hover{
    border-color:rgba(247,144,30,.5);
    color:#f7901e;
}

.lang-pill .globe-icon{
    font-size:13px;
    line-height:1;
}

@media(max-width:900px){
header{
padding:20px;
}
}

/* ===== HAMBURGER (mobile navbar) ===== */
.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
background:none;
border:none;
padding:0;
}

.hamburger span{
width:26px;
height:2px;
background:#222;
}

@media(max-width:900px){

.hamburger{
display:flex;
z-index:1001;
}

.hamburger span{
transition:.3s;
}

.hamburger.active span:nth-child(1){
transform:translateY(7px) rotate(45deg);
background:#fff;
}
.hamburger.active span:nth-child(2){
opacity:0;
}
.hamburger.active span:nth-child(3){
transform:translateY(-7px) rotate(-45deg);
background:#fff;
}

#navbar > nav{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:#16100c;
padding:100px 20px 40px;
overflow-y:auto;
z-index:1000;
}

#navbar > nav.open{
display:block;
}

.nav-list{
flex-direction:column;
gap:0;
}

#navbar > nav a{
color:#cfcfcf;
font-size:16px;
padding:16px 18px;
border-radius:12px;
margin-bottom:6px;
transition:.25s;
display:block;
}

#navbar > nav a.active{
background:#f7901e;
color:#fff !important;
}

.nav-dropdown{
width:100%;
}

.dropdown-toggle{
display:flex;
align-items:center;
justify-content:space-between;
width:100%;
}

.dropdown-menu{
position:static;
opacity:1;
visibility:visible;
transform:none;
display:block;
max-height:0;
overflow:hidden;
background:transparent;
border-top:none;
border-radius:0;
transition:max-height .35s ease;
}

.nav-dropdown.mobile-open .dropdown-menu{
max-height:300px;
}

.dropdown-menu a{
    display:block;
    padding:14px 20px;
    color:#ffffff !important;
    text-decoration:none;
    font-size:14px;
    white-space:nowrap;
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.caret{
transition:.3s;
}

.nav-dropdown.mobile-open .caret{
transform:rotate(180deg);
}
}

.no-scroll{
overflow:hidden;
}

/* ===== DROPDOWN (Our Product) - desktop ===== */

.nav-dropdown{
    position:relative;
}

.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:6px;
}

.caret{
    font-size:22px;
    transition:.3s;
}

.dropdown-menu{
    position:absolute;
    top:calc(100% + 12px);
    left:0;

    min-width:360px;
    list-style:none;

    background:#2b2b2b;

    border-top:2px solid #F7901E;
    border-radius:0 0 8px 8px;

    overflow:hidden;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:.3s;

    z-index:999;
}

.dropdown-menu a{
    display:block;
    padding:14px 20px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    white-space:nowrap;
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.dropdown-menu a:last-child{
    border-bottom:none;
}

.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-dropdown:hover .caret{
    transform:rotate(180deg);
}

.nav-dropdown.open .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-dropdown.open .caret{
    transform:rotate(180deg);
}

.dropdown-menu a,
.dropdown-menu a:link,
.dropdown-menu a:visited,
.dropdown-menu a:active{
    color:#fff !important;
}

.dropdown-menu a:hover{
    background:#F7901E;
    color:#fff !important;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:55px;
height:55px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 20px rgba(0,0,0,.3);
z-index:998;
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* ================= FOOTER ================= */

.footer{
    background:#16100c;
    border-top:1px solid rgba(255,255,255,.08);
    padding:28px 100px;
}

.footer-container{
    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-logo{
    font-weight:700;
    font-size:18px;
    letter-spacing:1px;
}

.footer-logo .white{
    color:#ffffff;
}

.footer-logo .orange{
    color:#F7901E;
    background:transparent;
    margin-left:6px;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    padding:0;
}

.footer-copy{
    color:#a7a7a7;
    font-size:14px;
}

@media(max-width:768px){

.footer{
    padding:25px 20px;
}

.footer-container{
    flex-direction:column;
    gap:18px;
    text-align:center;
}

.footer-copy{
    line-height:1.6;
}

}

/* ===================================================================
   SHARED EYEBROW LABEL
=================================================================== */
.process-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;

    color:#f7901e;
    font-size:12px;
    font-weight:700;
    letter-spacing:2.5px;
    text-transform:uppercase;
    font-family:'Inter',sans-serif;

    margin-bottom:18px;
}

.eyebrow-bar{
    display:inline-block;
    width:2px;
    height:14px;
    background:#f7901e;
}

.highlight{
    color:#f7901e;
}

/* ===================================================================
   PROCESS HERO
=================================================================== */
.process-hero{
    background:linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url("/Assets/hero/hero3.png");
    background-size:cover;
    background-position:center 60%;
    padding:170px 100px 80px;
    position:relative;
    overflow:hidden;
}

.process-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(22,16,12,0) 40%, #16100c 100%);
    z-index:1;
}

.process-hero > *:not(.process-hero-overlay){
    position:relative;
    z-index:2;
}

.process-title{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:42px;
    font-weight:700;
    line-height:1.25;
    max-width:820px;
    margin-bottom:18px;
}

.process-subtitle{
    color:#ffffff;
    font-size:15px;
    line-height:1.8;
    max-width:560px;
    font-family:'Inter',sans-serif;
}

/* ===================================================================
   STAGE TABS
=================================================================== */
.process-tabs-section{
    background:rgba(27,21,16,.6);
    padding:0 100px 100px;
    border-top:1px solid rgba(53,44,37,.6);
    padding-top:45px;
}

.process-tabs{
    display:flex;
    align-items:center;
    gap:10px;
    overflow-x:auto;
    scrollbar-width:none;
    padding-bottom:22px;
}

.process-tabs::-webkit-scrollbar{
    display:none;
}

.process-tab{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:8px;

    background:#110C08;
    border:1px solid rgba(255,255,255,.15);
    cursor:pointer;

    color:#8f8f8f;
    font-family:'Inclusive Sans',sans-serif;
    font-size:13.5px;
    font-weight:500;

    padding:12px 20px;
    border-radius:40px;

    transition:.3s;
    white-space:nowrap;
}

.process-tab-num{
    font-family:'Inclusive Sans',sans-serif;
    font-weight:700;
}

.process-tab:hover{
    color:#fff;
    border-color:rgba(255,255,255,.35);
}

.process-tab.active{
    background:#f7901e;
    border-color:#f7901e;
    color:#fff;
    font-weight:600;
}

.process-progress{
    width:100%;
    height:8px;
    background:rgba(255,255,255,.08);
    border-radius:20px;
    margin-bottom:60px;
    overflow:hidden;
}

.process-progress-fill{
    height:100%;
    background:rgba(255,255,255,.35);
    border-radius:20px;
    width:11.11%;
    transition:width .4s ease;
}

/* ===================================================================
   STAGE CONTENT
=================================================================== */
.process-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;

    width:1290px;
    height:680px;
    max-width:100%;
    margin-inline:auto;

    background:rgba(17,12,8,.4);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:50px;
}

.process-media{
    height:100%;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.1);
    background:#1c140f;
}

.process-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:opacity .3s ease;
}

.process-text{
    height:100%;
    display:flex;
    flex-direction:column;
}

.process-text-body{
    margin-top:140px;
}

.process-text h2{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:32px;
    font-weight:600;
    margin-bottom:12px;
}

.process-tagline{
    display:block;
    color:#f7901e;
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-weight:700;
    font-size:18px;
    margin-bottom:20px;
}

.process-text p{
    color:#ffffff;
    font-family:'Inter',sans-serif;
    font-size:14.5px;
    line-height:1.9;
    margin-bottom:36px;
    text-align:justify;
}

.process-pagination{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:auto;
}

.process-arrow{
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    background:transparent;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
}

.process-arrow:hover{
    border-color:#f7901e;
    color:#f7901e;
}

.process-arrow-next{
    background:transparent;
    border-color:rgba(255,255,255,.2);
    color:#fff;
}

.process-arrow-next:hover{
    border-color:#f7901e;
    color:#f7901e;
}

.process-counter{
    color:#c7c7c7;
    font-size:14px;
    letter-spacing:.5px;
}

/* ===== MOBILE ===== */
@media(max-width:900px){

    .process-hero{
        padding:130px 20px 40px;
    }

    .process-title{
        font-size:28px;
    }

    .process-tabs-section{
        padding:35px 20px 70px;
    }

    .process-content{
        grid-template-columns:1fr;
        gap:35px;
        padding:25px;
        height:auto;
        width:100%;
    }

    .process-media{
        flex:none;
        max-width:100%;
        width:100%;
        aspect-ratio:16 / 11;
    }

    .process-text h2{
        font-size:26px;
    }

    .process-text-body{
        margin-top:0;
    }

    .process-text p{
        text-align:left;
    }

}

/* ===================================================================
   MOQ & PAYMENT TERMS
=================================================================== */
.moq-section{
    background:rgba(17,12,8,.4);
    padding:90px 100px 120px;
    border-top:1px solid rgba(53,44,37,.6);
    scroll-margin-top:100px;
}

.moq-title{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:38px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:55px;
}

.moq-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:90px;
    align-items:start;
}

/* ----- LEFT: PAYMENT INFO ----- */
.moq-info h3{
    color:#F99532;
    font-size:17px;
    font-weight:600;
    line-height:1.5;
    margin-bottom:14px;
}

.moq-info h3:not(:first-child){
    margin-top:36px;
}

.moq-info p{
    color:#ffffff;
    font-size:14px;
    line-height:1.9;
    font-family:'Inter',sans-serif;
    text-align:justify;
}

.moq-discuss-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    margin-top:30px;
}

.moq-discuss-line{
    flex:1;
    height:1px;
    background:rgba(247,144,30,.35);
}

.moq-discuss-link{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:19px;
    font-weight:600;
    white-space:nowrap;
}

/* ----- RIGHT: MOQ CARD ----- */
.moq-card{
    background:rgba(53,44,37,.6);
    border:1px solid #352c25;
    border-radius:20px;
    padding:34px;
}

@media(min-width:901px){
    .moq-card{
        margin-top:calc(-55px - 2 * 38px * 1.3);
    }
}

.moq-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:26px;
}

.moq-card-header h3{
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.moq-tag{
    background:rgba(247,144,30,.08);
    color:#f7901e;
    font-size:9px;
    font-weight:700;
    letter-spacing:1.5px;
    padding:4px 10px;
    border:1px solid rgba(247,144,30,.25);
    border-radius:20px;
}

.moq-container-options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:30px;
}

.moq-container-option{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:26px 10px;
    border-radius:14px;

    background:rgba(17,12,8,.4);
    border:1px solid rgba(255,255,255,.1);

    transition:.3s;
}

.moq-container-size{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:28px;
    font-weight:600;
    line-height:1;
}

.moq-container-label{
    color:#8f8f8f;
    font-size:9.5px;
    font-weight:600;
    letter-spacing:2.5px;
    text-transform:uppercase;
}

.moq-container-tons{
    color:#a3a3a3;
    font-size:12px;
    font-weight:500;
    letter-spacing:.3px;
}

.moq-container-option.selected{
    background:#F99532;
    border-color:transparent;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 10px 24px rgba(255,121,0,.22);
}

.moq-container-option.selected .moq-container-size,
.moq-container-option.selected .moq-container-label,
.moq-container-option.selected .moq-container-tons{
    color:#fff;
}

.moq-detail-list{
    list-style:none;
    border-top:1px solid rgba(255,255,255,.06);
    padding-top:6px;
}

.moq-detail-list li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.moq-detail-list li:last-child{
    border-bottom:none;
}

.moq-detail-icon{
    flex:0 0 auto;
    width:26px;
    height:26px;
    border-radius:50%;
    background:rgba(247,144,30,.08);
    border:1px solid rgba(247,144,30,.18);
    display:flex;
    align-items:center;
    justify-content:center;
}

.moq-detail-label{
    flex:1;
    color:#8f8f8f;
    font-family:'Inter',sans-serif;
    font-size:12.5px;
    letter-spacing:.3px;
}

.moq-detail-value{
    color:#fff;
    font-family:'Inter',sans-serif;
    font-size:13.5px;
    font-weight:600;
    letter-spacing:.3px;
    text-align:right;
    white-space:nowrap;
}

.moq-note{
    margin-top:18px;
    color:#5f5f5f;
    font-size:10.5px;
    line-height:1.7;
    text-align:center;
}

/* ===== MOBILE ===== */
@media(max-width:900px){

    .moq-section{
        padding:70px 20px 90px;
    }

    .moq-title{
        font-size:28px;
        margin-bottom:40px;
    }

    .moq-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .moq-card{
        padding:26px;
    }

    .moq-detail-value{
        text-align:right;
        white-space:normal;
    }
}

/* ===== HP KECIL (<=480px) ===== */
@media(max-width:480px){

    .process-title{
        font-size:24px;
    }

    .process-content{
        padding:20px;
    }

    .moq-title{
        font-size:24px;
    }

    .moq-card{
        padding:22px 18px;
    }

    .moq-detail-list li{
        gap:10px;
    }
}